const go/token.IMPORT

9 uses

	go/token (current package)
		token.go#L114: 	IMPORT
		token.go#L220: 	IMPORT: "import",

	go/ast
		import.go#L18: 		if !ok || d.Tok != token.IMPORT {

	go/doc
		example.go#L57: 			if g, ok := decl.(*ast.GenDecl); ok && g.Tok != token.IMPORT {
		example.go#L344: 		Tok:    token.IMPORT,
		reader.go#L564: 			case token.IMPORT:

	go/format
		format.go#L122: 		if !ok || d.Tok != token.IMPORT {

	go/parser
		parser.go#L2872: 		for p.tok == token.IMPORT {
		parser.go#L2873: 			decls = append(decls, p.parseGenDecl(token.IMPORT, p.parseImportSpec))